home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 1.iso / toolbox / src / exampleCode / opengl / toogl / Makefile < prev    next >
Encoding:
Makefile  |  1996-11-11  |  1.5 KB  |  43 lines

  1. #
  2. # Copyright (c) 1992, 1993, 1994, Silicon Graphics, Inc.
  3. #
  4. # Permission to use, copy, modify, distribute, and sell this software and
  5. # its documentation for any purpose is hereby granted without fee, provided
  6. # that (i) the above copyright notices and this permission notice appear in
  7. # all copies of the software and related documentation, and (ii) the name of
  8. # Silicon Graphics may not be used in any advertising or publicity relating 
  9. # to the software without the specific, prior written permission of 
  10. # Silicon Graphics.
  11. #
  12. # THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF
  13. # ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, 
  14. # ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
  15. #
  16. # IN NO EVENT SHALL SILICON GRAPHICS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, 
  17. # INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER 
  18. # RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF 
  19. # THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT 
  20. # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  21. #
  22.  
  23. include $(ROOT)/usr/include/make/commondefs
  24.  
  25. OPTIMIZER= +d -O2 -Olimit 2000
  26. LDIRT = ptrepository
  27. SRC_FILES =  Makefile Makefile.lib irisgl_light.c perlassoc.h \
  28.     perlclass.c++ perlclass.h regex.c regex.h regexp.h regmagic.h \
  29.     search.c++ search.h toogl.c++
  30.  
  31.  
  32. default: toogl
  33.  
  34. include $(COMMONRULES)
  35.  
  36. CXXFILES = perlclass.c++ toogl.c++ search.c++
  37. CFILES = regex.c
  38.  
  39. TARGETS = toogl
  40.  
  41. toogl: $(OBJECTS)
  42.     $(CXXF) -pte.c++  -o toogl $(OBJECTS)     
  43.